EditDocumentTaxableAmountDto

data class EditDocumentTaxableAmountDto(taxes: List<DocumentTaxDto>?, beforeTax: BigDecimal?, afterTax: BigDecimal?)

Parameters

taxes

The taxes of this amount. The content passed in the PATCH call will completely replace the current content.

beforeTax

The total amount before taxes

afterTax

The total amount after taxes

Constructors

EditDocumentTaxableAmountDto
Link copied to clipboard
fun EditDocumentTaxableAmountDto(taxes: List<DocumentTaxDto>? = null, beforeTax: BigDecimal? = null, afterTax: BigDecimal? = null)
The taxes of this amount.

Properties

afterTax
Link copied to clipboard
@SerializedName(value = afterTax)
val afterTax: BigDecimal? = null
The total amount after taxes
beforeTax
Link copied to clipboard
@SerializedName(value = beforeTax)
val beforeTax: BigDecimal? = null
The total amount before taxes
taxes
Link copied to clipboard
@SerializedName(value = taxes)
val taxes: List<DocumentTaxDto>? = null
The taxes of this amount.